home *** CD-ROM | disk | FTP | other *** search
- #ifndef __BLOCK_ASK_H_
- #define __BLOCK_ASK_H_
-
- #include "blk.h"
- #include "ask.h"
-
- class BlockAsk : public Block
- {
- public:
- Ask* table;
- Element* home_element;
- Element* end_element;
- Element* ok_element;
-
- BlockAsk(rect coordinates, // Screen cells
- char* tabName, // Table name
- KH_STRTABLE* fields, // Field names
- char* fName = "", // File for swapping
- BORDERS b_type = SHOW_BORDER, // Border type
- int res = FIXED, // Resize status
- int elem_pat = 0); // Buttons
- virtual void hide();
- virtual void rearrange();
- virtual void touch(int i = 0) { table->touch(i); }
- };
-
-
-
- #endif __BLOCK_ASK_H_